/* General Preloader Styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner Animation */
#loader {
    position: relative;
    animation: spin 3s infinite linear; /* زيادة الوقت هنا */
}

#loader img {
    width: 60px;
    height: 60px;
}

/* Sliding Sections */
.loader-section {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: #333;
}

.section-left {
    left: 0;
    animation: slide-left 3s infinite ease-in-out; /* زيادة الوقت هنا */
}

.section-right {
    right: 0;
    animation: slide-right 3s infinite ease-in-out; /* زيادة الوقت هنا */
}

/* Slide Animation */
@keyframes slide-left {
    0% { width: 0; }
    50% { width: 50%; }
    100% { width: 0; }
}

@keyframes slide-right {
    0% { width: 0; }
    50% { width: 50%; }
    100% { width: 0; }
}

/* Spin Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide the loader after page load */
body.loaded #loader-wrapper {
    display: none;
}
